math/big.nat.scan (method)

5 uses

	math/big (current package)
		floatconv.go#L50: 	z.mant, b, fcount, err = z.mant.scan(r, base, true)
		intconv.go#L188: 	z.abs, base, _, err = z.abs.scan(r, base, false)
		natconv.go#L108: func (z nat) scan(r io.ByteScanner, base int, fracOk bool) (res nat, b, count int, err error) {
		ratconv.go#L71: 		if z.b.abs, _, _, err = z.b.abs.scan(r, 0, false); err != nil {
		ratconv.go#L96: 	z.a.abs, base, fcount, err = z.a.abs.scan(r, 0, true)